home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap15 / dun15_9.txt < prev    next >
Encoding:
Text File  |  1997-12-18  |  1014 b   |  35 lines

  1. <P ALIGN=center>
  2.   <A HREF="" onClick="changeContent(); return false;">
  3.     Click Here To Change Content
  4.   </A>
  5. </P>
  6.  
  7. <P><FONT ID=first FACE="Arial, Helvetica" SIZE=+2">
  8.   Generic Content That Will Be Replaced
  9. </FONT></P>
  10.  
  11. <P><FONT ID=second FACE="Arial, Helvetica" SIZE=+2">
  12.   Generic Content That Will Be Replaced
  13. </FONT></P>
  14.  
  15. <P><FONT ID=third FACE="Arial, Helvetica" SIZE=+2">
  16.   Generic Content That Will Be Replaced
  17. </FONT></P>
  18.  
  19. <P><FONT ID=fourth FACE="Arial, Helvetica" SIZE=+2">
  20.   Generic Content That Will Be Replaced
  21. </FONT></P>
  22.  
  23. <SCRIPT>
  24. function changeContent()
  25. {
  26.   beginText = "<B>Content Replaced By The <TT>";
  27.   endText = "</TT> Property</B>";
  28.  
  29.   document.all.first.innerHTML = beginText + "innerHTML" + endText;
  30.   document.all.second.innerText = beginText + "innerText" + endText;
  31.   document.all.third.outerHTML = beginText + "outerHTML" + endText;
  32.   document.all.fourth.outerText = beginText + "outerText" + endText;
  33. }
  34. </SCRIPT>
  35.